home *** CD-ROM | disk | FTP | other *** search
/ 3D GFX / 3D GFX.iso / amiutils / i_l / irit5 / irit / ctrl-brk.h < prev    next >
C/C++ Source or Header  |  1995-12-30  |  641b  |  25 lines

  1. /*****************************************************************************
  2. * Module to trap ctrl-brk/hardware error and handle them gracefully.         *
  3. * Note the usage of GraphGen.c module is assumed.                 *
  4. *                                         *
  5. * Written by:  Gershon Elber                Ver 1.1, Mar. 1990   *
  6. *****************************************************************************/
  7.  
  8. #ifndef    CTRL_BRK_H
  9. #define CTRL_BRK_H
  10.  
  11. #ifndef LINE_LEN
  12. #define LINE_LEN 128
  13. #endif  /* LINE_LEN */
  14.  
  15. #ifndef TRUE
  16. #define TRUE    1
  17. #define FALSE    0
  18. #endif  /* TRUE */
  19.  
  20. /* And finally the prototypes of the external routines: */
  21.  
  22. void SetUpCtrlBrk(void);
  23.  
  24. #endif    /* CTRL_BRK_H */
  25.